Blue Monday...就來點簡單的吧
今天介紹的是array.unshift
array.unshift
與 array.shift
算是一對兄弟檔,一個負責插入資料,一個負責拿取資料
array.unshift
使用方式其實跟 array.push
一樣,
主要功能是把資料插入陣列中
兩者的差異則是array.unshift
是從陣列前端插入資料 array.push
是從陣列後端插入資料
array.unshift(element1,.....,element2);
程式碼如下:
let colors = ['blue', 'yellow', 'red', 'orange']
colors.unshift('gary', 'white');
console.log(colors)